adjacency matrix 예문
예문 더보기: 1 2
- When you use graph to create an undirected graph, the adjacency matrix must be symmetric.
graph 를 사용하여 무방향 그래프를 생성할 경우 인접 행렬은 대칭 행렬이어야 합니다. - Creating Graphs The primary ways to create a graph include using an adjacency matrix or an edge list.
그래프를 만드는 기본적인 방법에는 인접 행렬이나 간선 목록을 사용하는 것이 있습니다. - When you use digraph to create a directed graph, the adjacency matrix does not need to be symmetric.
digraph 를 사용하여 유방향 그래프를 생성할 경우 인접 행렬은 대칭 행렬일 필요가 없습니다. - The nonzero entries in an adjacency matrix indicate an edge between two nodes, and the value of the entry indicates the weight of the edge.
인접 행렬의 0이 아닌 항목은 두 노드 간 간선을 나타내고, 항목의 값은 간선의 가중치를 나타냅니다. - For large graphs, the adjacency matrix contains many zeros and is typically a sparse matrix. You cannot create a multigraph from an adjacency matrix.
대규모 그래프의 경우, 인접 행렬은 0을 많이 포함하며, 대개 희소 행렬입니다. 다중 그래프는 인접 행렬로 생성할 수 없습니다.